github.com/jackc/pgx/v5/pgconn.scramClient.clientNonce (field)

6 uses

	github.com/jackc/pgx/v5/pgconn (current package)
		auth_scram.go#L147: 	clientNonce          []byte
		auth_scram.go#L208: 	sc.clientNonce = make([]byte, base64.RawStdEncoding.EncodedLen(len(buf)))
		auth_scram.go#L209: 	base64.RawStdEncoding.Encode(sc.clientNonce, buf)
		auth_scram.go#L230: 	sc.clientFirstMessageBare = fmt.Appendf(nil, "n=,r=%s", sc.clientNonce)
		auth_scram.go#L287: 	if !bytes.HasPrefix(sc.clientAndServerNonce, sc.clientNonce) {
		auth_scram.go#L291: 	if len(sc.clientAndServerNonce) <= len(sc.clientNonce) {